home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{03B95A9D-DBDD-11D2-87A3-97F32F5E191C}#1.1#0"; "DSIELink.ocx"
- Begin VB.Form FrmDemo2
- BorderStyle = 3 'Fixed Dialog
- Caption = "Demo of the URL link control.."
- ClientHeight = 3735
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 7170
- Icon = "FrmDemo2.frx":0000
- LinkTopic = "FrmDemo2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3735
- ScaleWidth = 7170
- StartUpPosition = 2 'CenterScreen
- Begin VB.Frame Frames
- Caption = "Browser Synchronisation..."
- Height = 2295
- Index = 0
- Left = 120
- TabIndex = 4
- Top = 1320
- Width = 3735
- Begin DSIELink.IELink Links
- Height = 225
- Index = 0
- Left = 240
- TabIndex = 6
- Top = 1800
- Width = 1185
- _ExtentX = 2090
- _ExtentY = 397
- Caption = "AutoDetect Link"
- Hover = 0 'False
- IESync = 3
- End
- Begin DSIELink.IELink Links
- Height = 225
- Index = 1
- Left = 1680
- TabIndex = 7
- Top = 1680
- Width = 1530
- _ExtentX = 2699
- _ExtentY = 397
- Caption = "Internet Explorer Link"
- Hover = 0 'False
- IESync = 1
- End
- Begin DSIELink.IELink Links
- Height = 225
- Index = 2
- Left = 1680
- TabIndex = 8
- Top = 1920
- Width = 1800
- _ExtentX = 3175
- _ExtentY = 397
- Caption = "Netscape Navigator Link"
- Hover = 0 'False
- IESync = 2
- End
- Begin VB.Label LblLabels
- AutoSize = -1 'True
- Caption = $"FrmDemo2.frx":0442
- Height = 1455
- Index = 2
- Left = 120
- TabIndex = 9
- Top = 240
- Width = 3495
- WordWrap = -1 'True
- End
- End
- Begin VB.Frame Frames
- Caption = "Hover Colours..."
- Height = 2295
- Index = 2
- Left = 3960
- TabIndex = 5
- Top = 1320
- Width = 3135
- Begin DSIELink.IELink Links
- Height = 225
- Index = 3
- Left = 120
- TabIndex = 11
- Top = 1200
- Width = 690
- _ExtentX = 1217
- _ExtentY = 397
- Caption = "Test Link"
- Style = 0
- End
- Begin DSIELink.IELink Links
- Height = 225
- Index = 4
- Left = 120
- TabIndex = 12
- Top = 1560
- Width = 690
- _ExtentX = 1217
- _ExtentY = 397
- Caption = "Test Link"
- Style = 0
- HoverColor = 65280
- End
- Begin DSIELink.IELink Links
- Height = 225
- Index = 5
- Left = 120
- TabIndex = 13
- Top = 1920
- Width = 690
- _ExtentX = 1217
- _ExtentY = 397
- Caption = "Test Link"
- Style = 0
- Hover = 0 'False
- End
- Begin VB.Label LblLabels
- AutoSize = -1 'True
- Caption = "This has no hover colour"
- Height = 195
- Index = 6
- Left = 840
- TabIndex = 16
- Top = 1920
- Width = 1800
- WordWrap = -1 'True
- End
- Begin VB.Label LblLabels
- AutoSize = -1 'True
- Caption = "This has a green hover colour"
- Height = 255
- Index = 5
- Left = 840
- TabIndex = 15
- Top = 1560
- Width = 2160
- WordWrap = -1 'True
- End
- Begin VB.Label LblLabels
- AutoSize = -1 'True
- Caption = "This has a red hover colour"
- Height = 195
- Index = 4
- Left = 840
- TabIndex = 14
- Top = 1200
- Width = 2040
- WordWrap = -1 'True
- End
- Begin VB.Label LblLabels
- AutoSize = -1 'True
- Caption = "The control supports the use of IE4 ""Hover"" Colour Style. Point at the links below to test it"
- Height = 660
- Index = 3
- Left = 120
- TabIndex = 10
- Top = 240
- Width = 2880
- WordWrap = -1 'True
- End
- End
- Begin VB.CommandButton BtnDemo
- Caption = "&Demo Form 1"
- Height = 375
- Index = 0
- Left = 4800
- TabIndex = 1
- Top = 120
- Width = 1095
- End
- Begin VB.CommandButton BtnDemo
- Caption = "Demo &Form 3"
- Height = 375
- Index = 1
- Left = 6000
- TabIndex = 0
- Top = 120
- Width = 1095
- End
- Begin VB.Image ImgLogo
- Height = 480
- Left = 120
- Picture = "FrmDemo2.frx":058C
- Top = 120
- Width = 480
- End
- Begin VB.Label LblLabels
- AutoSize = -1 'True
- Caption = $"FrmDemo2.frx":0896
- Height = 780
- Index = 0
- Left = 720
- TabIndex = 3
- Top = 120
- Width = 3690
- WordWrap = -1 'True
- End
- Begin VB.Label LblLabels
- AutoSize = -1 'True
- Caption = "This form shows the various advanced features of this control."
- Height = 195
- Index = 1
- Left = 120
- TabIndex = 2
- Top = 1080
- Width = 4410
- WordWrap = -1 'True
- End
- Attribute VB_Name = "FrmDemo2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub BtnDemo_Click(Index As Integer)
- Me.Hide
- If Index = 0 Then
- FrmDemo1.Show
- Else
- FrmDemo3.Show
- End If
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- End
- End Sub
- Private Sub Links_LaunchURL(Index As Integer)
- MsgBox "You clicked the URL!"
- End Sub
-